# Option[T] `````{roto:type} Option[T] An optional value. The `Option[T]` is an enum with two constructors: `Some(T)` and `None`. To get the value of an `Option`, you can either match on it or use the `?` operator. The notation `T?` is shorthand for `Option[T]`. For more information, see [the language reference](#lang_optionals). `````